* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "poppins";
  font-size: 62.5%;
}
body {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20vh;
}
.rubrik {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 30vw;
}
.rubrik h1 {
  font-size: 5rem;
  text-transform: uppercase;
  border-bottom: 1.4rem solid #006ec7;
}
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width:70%;
  margin: auto;
  border-bottom: 0.3rem solid black;
}
.video-container video {
  width: 88rem;
  height: 50rem;
}
.video-info {
  display: flex;
  flex-direction: column;
  width: 40vw;
  height: 20vh;
  padding-top: 3vh;
  align-self: flex-start;
}
.video-info h1 {
  font-size: 4.5rem;
  font-weight: 700;
}
.video-info h2 {
  font-size: 2rem;
  font-weight: 500;
}
.galleri{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  height: 100vh;
  margin: auto;
  margin-top: 8vh;
}
.rad1{
  display: flex;
  justify-content: center;
  height: 30vh;
  width: 80vw;
}
.rad2{
  display: flex;
  margin-top: 2vh;
  margin-bottom: 2vh;
  justify-content: center;
  height: 14vh;
  width: 80vw;
}
.rad3{
  display: flex;
  justify-content: center;
  height: 30vh;
  width: 80vw;
}
.rad4{
  display: flex;
  margin-top: 2vh;
  justify-content: center;
  height: 30vh;
  width: 80vw;
}
.galleri-mini{
  display: none;
}



.loading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: #006ec7;
  z-index: 999999;
}
.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: white;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@media screen and (max-width: 1440px){
  .video-container{
    border: none;
  }
}

@media screen and (max-width: 700px){
  .video-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  .video-container video {
    width: 90vw;
    height: 25vh;
  }
  .video-info {
    display: flex;
    flex-direction: column;
    width: 90vw;
    height: 20vh;
    padding-top: 3vh;
    border-bottom: 0.3rem solid black;
  }
  .video-info h1 {
    font-size: 2rem;
    font-weight: 700;
  }
  .video-info h2 {
    font-size: 1rem;
    font-weight: 500;
  }
  .galleri{
    display: none;
  }
  .galleri-mini{
    display: block;
    width: 100%;
    height: 100vh;
    margin-top: 10vh;
  }
  .galleri-mini img{
    width: 70vw;
    height: 100%;
  }
  .galleri-mini div{
    width: 100%;
    height: 24vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5vh;
  }
}